home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Creative Computers
/
Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso
/
commercial
/
inovatronics
/
edgedemo
/
edgeeditor
/
rexx
/
menu_savedefmac.edge
< prev
next >
Wrap
Text File
|
1994-11-17
|
546b
|
23 lines
/*
** $VER: Menu_SaveDefMac.edge 1.0 (Friday 22-Oct-93 12:55:22)
**
** Save the default macro to a file
**
** Written by Thomas liljetoft & Inovatronics
*/
options results
/* check to see if it exists */
if exists('ram:edge.macro') then do
/* where to we want to save the default macro to */
requestfile title """Save Macro As...""" path """rexx:""" getdir save
/* copy it to there then */
if rc==0 then address command copy """ram:edge.macro""" result
end
/* if not then complain */
else requestnotify """There is no default macro."""